db0e2cc9d31e33c4735d41adf08208b256ff416d,portal-impl/src/com/liferay/portlet/ratings/model/impl/RatingsEntryModelImpl.java,RatingsEntryModelImpl,getExpandoBridge,#,416
Before Change
@Override
public ExpandoBridge getExpandoBridge() {
return ExpandoBridgeFactoryUtil.getExpandoBridge(getCompanyId(),
RatingsEntry.class.getName(), getPrimaryKey());
}
@Override
After Change
@Override
public ExpandoBridge getExpandoBridge() {
if (_expandoBridge == null) {
_expandoBridge = ExpandoBridgeFactoryUtil.getExpandoBridge(getCompanyId(),
RatingsEntry.class.getName(), getPrimaryKey());
}
return _expandoBridge;
}
@Override